home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 6_functions / split < prev    next >
Text File  |  2001-03-21  |  454b  |  22 lines

  1. Synopsis:
  2.    $split(<chars> <text>)
  3.  
  4. Technical:
  5.    This function converts each specified character found in the input text
  6.    to a space.
  7.  
  8. Practical:
  9.    This function is mostly useful for parsing lines of input that contain
  10.    a particular character as a delimiter.
  11.  
  12. Returns:
  13.    input text with characters swapped
  14.  
  15. Examples:
  16.    $split(: a:b:c)            returns "a b c"
  17.    $split(,. a,b.c)           returns "a b c"
  18.  
  19. See Also:
  20.    tr(6)
  21.  
  22.